blob: 4938d8f86aed7a752c3e401d0aedfad4cd2e1a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import AppLayout from '@/core/components/layouts/AppLayout'
import IsAuth from '@/lib/auth/components/IsAuth'
import InvoiceComponent from '@/lib/invoice/components/Invoice'
import { useRouter } from 'next/router'
export default function Invoice() {
const router = useRouter()
return (
<IsAuth>
<AppLayout title='Invoice & Faktur Pajak'>
<InvoiceComponent id={router.query.id} />
</AppLayout>
</IsAuth>
)
}
|